home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if not (%1)==(-k) goto install
- rem
- rem ---- Installation of Klos PPP (optional) ----
- rem
- if not exist pppshare.exe arachne.bat -c
- pppshare.exe
- ren arachne.bat arachne.tpl
- ren klos.tpl arachne.bat
- arachne.bat -c
- rem
- rem ---- Arachne installation ----
- rem
- :install
- if exist arachne.cfg goto setup
- cls
- type readme.txt|more
- pause
- cls
- copy default.acf arachne.cfg
- echo Arachne configuration is now optimized for average PC (386 or 486 CPU)
- echo.
- yesno Do you want to optimize Arachne for faster PCs (with Pentium CPU)
- if errorlevel 1 goto pentium
- echo.
- yesno Do you want to optimize Arachne for slower PCs (PC-AT or even PC-XT)
- if errorlevel 1 goto at
- goto setup
- :pentium
- copy pentium.acf arachne.cfg
- del home.htm
- del mail.htm
- del utils.htm
- copy slowhome.htm home.htm
- copy slowmail.htm mail.htm
- copy slowutil.htm utils.htm
- goto setup
- :at
- copy pc_at.acf arachne.cfg
- rem
- rem ---- Arachne setup ----
- rem
- :setup
- arachne.bat -s
-